home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
comms
/
other
/
amicomsys
/
rexx
/
messagearexx.amicomsys
< prev
next >
Wrap
Text File
|
1999-05-17
|
533b
|
17 lines
/* MessageArexx.amicomsys example
** You parse the arguments which AmiComSys send to
** this script in the following way:
user=username
name=realname
text=the message text
act= MSG, CHAT or WEB.
*/
PARSE ARG user '\0' name '\0' text '\0' act
Say "Your are now testing the MessageArexx feature"
Say "Go to the Misc-settings, and uncheck the box to disable this feature."
Say "By unchecking the Replace ACS'requester checkbox this script could replace the requesters."
Say "User:" user
Say "Name:" name
Say "Text:" text
Say "Act:" act